home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Freeware / Programare / highlight / highlight-W32GUI-2.2-10b-Setup.exe / {app} / src / mousehandler.cpp < prev    next >
C/C++ Source or Header  |  2005-02-11  |  1KB  |  30 lines

  1. /***************************************************************************
  2.                      mousehandler.cpp  -  description
  3.                              -------------------
  4.     begin                : 11.02.2005
  5.     copyright            : (C) 2005 by AndrΘ Simon
  6.     email                : andre.simon1@gmx.de
  7.  ***************************************************************************/
  8.  
  9. /***************************************************************************
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  ***************************************************************************/
  17.  
  18. #include "mousehandler.h"
  19.  
  20.  
  21. MouseEvtHandler::MouseEvtHandler(){}
  22.  
  23. void MouseEvtHandler::OnRightMouseDown(wxMouseEvent& event)
  24.     {        
  25. wxMessageBox("º");        
  26.         // if we don't skip the event, the other event handlers won't get it:
  27.         // try commenting out this line and see what changes
  28.         event.Skip();
  29.     }
  30.